home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / events / CollectionEventKind.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  790 b   |  34 lines

  1. package mx.events
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class CollectionEventKind
  8.    {
  9.       mx_internal static const VERSION:String = "3.0.0.0";
  10.       
  11.       public static const ADD:String = "add";
  12.       
  13.       public static const MOVE:String = "move";
  14.       
  15.       public static const REFRESH:String = "refresh";
  16.       
  17.       public static const REMOVE:String = "remove";
  18.       
  19.       public static const REPLACE:String = "replace";
  20.       
  21.       mx_internal static const EXPAND:String = "expand";
  22.       
  23.       public static const RESET:String = "reset";
  24.       
  25.       public static const UPDATE:String = "update";
  26.       
  27.       public function CollectionEventKind()
  28.       {
  29.          super();
  30.       }
  31.    }
  32. }
  33.  
  34.